HTMLify

style.css
Views: 32 | Author: cody
@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Prata&family=Vollkorn:ital,wght@1,500&display=swap');

* {
    overflow: hidden;
}

.navbar-brand {
    color: whitesmoke !important;
}

body {
    margin: 0px;
    padding: 0px;
    background: linear-gradient(90deg, rgba(33,11,157,1) 0%, rgba(83,28,168,1) 18%, rgba(82,126,233,1) 50%, rgba(28,133,164,1) 78%, rgba(3,18,121,1) 100%);    color: whitesmoke !important;
    font-weight: bold;
    overflow-x: hidden;
    overflow-y: hidden;
    min-height: 100vh;
}

.footer {
    background: rgb(37, 37, 37);
    width: 100%;
    text-align: center;
    height: 50px !important;
    font-family: 'Vollkorn';
    padding: 10px;
    position: fixed !important;
    left: 0;
    bottom: 0;
    color: whitesmoke;
}

.greeting {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
    background-color: transparent;
    border-radius: 5px;
    box-shadow: 5px 3px 10px rgb(241, 238, 238);
    align-items: center;
    margin-top: 20%;
    transition: transform 0.3s;
    max-width: 400px;
    font-size: 1.5rem;
}

h2 {
    font-family: 'Lobster', cursive;
}

p {
    font-family: 'Prata', serif;
}

a {
    color: whitesmoke;
    font-family: 'Vollkorn';
}

.details {
    font-family: 'Vollkorn';
}

#lottie {
    background: transparent;
    width: 35vw;
    height: 90vh;
}

Comments